AppRestrictionsSchemaRestrictionRestrictionValue.fromJson constructor

AppRestrictionsSchemaRestrictionRestrictionValue.fromJson(
  1. Map json_
)

Implementation

AppRestrictionsSchemaRestrictionRestrictionValue.fromJson(core.Map json_)
  : this(
      type: json_['type'] as core.String?,
      valueBool: json_['valueBool'] as core.bool?,
      valueInteger: json_['valueInteger'] as core.int?,
      valueMultiselect: (json_['valueMultiselect'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      valueString: json_['valueString'] as core.String?,
    );