UpdateApplicationVersionReq constructor
UpdateApplicationVersionReq({
- String? id,
- StringValue? platform,
- StringValue? version,
- StringValue? url,
- StringValue? text,
- BoolValue? force,
- BoolValue? latest,
- BoolValue? hot,
Implementation
factory UpdateApplicationVersionReq({
$core.String? id,
$0.StringValue? platform,
$0.StringValue? version,
$0.StringValue? url,
$0.StringValue? text,
$0.BoolValue? force,
$0.BoolValue? latest,
$0.BoolValue? hot,
}) {
final result = create();
if (id != null) result.id = id;
if (platform != null) result.platform = platform;
if (version != null) result.version = version;
if (url != null) result.url = url;
if (text != null) result.text = text;
if (force != null) result.force = force;
if (latest != null) result.latest = latest;
if (hot != null) result.hot = hot;
return result;
}