createUploadDescription method
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,
});