TransferManifest.fromJson constructor

TransferManifest.fromJson(
  1. Map json_
)

Implementation

TransferManifest.fromJson(core.Map json_)
    : this(
        location: json_.containsKey('location')
            ? json_['location'] as core.String
            : null,
      );