DeveloperMetadataLookup.fromJson constructor

DeveloperMetadataLookup.fromJson(
  1. Map json_
)

Implementation

DeveloperMetadataLookup.fromJson(core.Map json_)
  : this(
      locationMatchingStrategy:
          json_['locationMatchingStrategy'] as core.String?,
      locationType: json_['locationType'] as core.String?,
      metadataId: json_['metadataId'] as core.int?,
      metadataKey: json_['metadataKey'] as core.String?,
      metadataLocation:
          json_.containsKey('metadataLocation')
              ? DeveloperMetadataLocation.fromJson(
                json_['metadataLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      metadataValue: json_['metadataValue'] as core.String?,
      visibility: json_['visibility'] as core.String?,
    );