ContentRestrictionRestrictionsExpandable.fromJson constructor
Implementation
factory ContentRestrictionRestrictionsExpandable.fromJson(
Map<String, Object?> json) {
return ContentRestrictionRestrictionsExpandable(
user: json[r'user'] as String?,
group: json[r'group'] as String?,
);
}