RunTransferJobRequest.fromJson constructor

RunTransferJobRequest.fromJson(
  1. Map json_
)

Implementation

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