GcsDestination.fromJson constructor

GcsDestination.fromJson(
  1. Map json_
)

Implementation

GcsDestination.fromJson(core.Map json_)
    : this(
        contentStructure: json_.containsKey('contentStructure')
            ? json_['contentStructure'] as core.String
            : null,
        messageView: json_.containsKey('messageView')
            ? json_['messageView'] as core.String
            : null,
        uriPrefix: json_.containsKey('uriPrefix')
            ? json_['uriPrefix'] as core.String
            : null,
      );