ContentRestrictionRestrictionsExpandable.fromJson constructor

ContentRestrictionRestrictionsExpandable.fromJson(
  1. Map<String, Object?> json
)

Implementation

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