GoogleFirebaseExtensionsV1betaEventDescriptor.fromJson constructor

GoogleFirebaseExtensionsV1betaEventDescriptor.fromJson(
  1. Map _json
)

Implementation

GoogleFirebaseExtensionsV1betaEventDescriptor.fromJson(core.Map _json)
    : this(
        description: _json.containsKey('description')
            ? _json['description'] as core.String
            : null,
        type: _json.containsKey('type') ? _json['type'] as core.String : null,
      );