DeveloperMetadata.fromJson constructor

DeveloperMetadata.fromJson(
  1. Map json_
)

Implementation

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