AboutAdditionalRoleInfo.fromJson constructor

AboutAdditionalRoleInfo.fromJson(
  1. Map json_
)

Implementation

AboutAdditionalRoleInfo.fromJson(core.Map json_)
    : this(
        roleSets: json_.containsKey('roleSets')
            ? (json_['roleSets'] as core.List)
                .map((value) => AboutAdditionalRoleInfoRoleSets.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );