AboutAdditionalRoleInfo.fromJson constructor

AboutAdditionalRoleInfo.fromJson(
  1. Map json_
)

Implementation

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