ProfileMetadata.fromJson constructor
ProfileMetadata.fromJson(
- Map json_
Implementation
ProfileMetadata.fromJson(core.Map json_)
: this(
objectType: json_['objectType'] as core.String?,
userTypes: (json_['userTypes'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);