AuthSchema.fromJson constructor

AuthSchema.fromJson(
  1. Map json_
)

Implementation

AuthSchema.fromJson(core.Map json_)
    : this(
        authFields: (json_['authFields'] as core.List?)
            ?.map((value) => AuthField.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        authKey: json_['authKey'] as core.String?,
        authType: json_['authType'] as core.String?,
        description: json_['description'] as core.String?,
        displayName: json_['displayName'] as core.String?,
        isDefault: json_['isDefault'] as core.bool?,
      );