createUploadDescription method

Future<String> createUploadDescription(
  1. String cloudProjectId, {
  2. String? serverpodVersion,
  3. String? dartVersion,
  4. String? commitHash,
  5. String? commitMessage,
  6. String? branch,
})

Implementation

_i2.Future<String> createUploadDescription(
  String cloudProjectId, {
  String? serverpodVersion,
  String? dartVersion,
  String? commitHash,
  String? commitMessage,
  String? branch,
}) => caller.callServerEndpoint<String>('deploy', 'createUploadDescription', {
  'cloudProjectId': cloudProjectId,
  'serverpodVersion': serverpodVersion,
  'dartVersion': dartVersion,
  'commitHash': commitHash,
  'commitMessage': commitMessage,
  'branch': branch,
});