UpdateApplicationVersionReq constructor

UpdateApplicationVersionReq({
  1. String? id,
  2. StringValue? platform,
  3. StringValue? version,
  4. StringValue? url,
  5. StringValue? text,
  6. BoolValue? force,
  7. BoolValue? latest,
  8. 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;
}