ProtoUpdateStateChangesStreamArg constructor
ProtoUpdateStateChangesStreamArg({
- String? uuid,
- bool? done,
- ProtoError? error,
- ProtoUpdateStateChanges? updateStateChanges,
Implementation
factory ProtoUpdateStateChangesStreamArg({
$core.String? uuid,
$core.bool? done,
ProtoError? error,
ProtoUpdateStateChanges? updateStateChanges,
}) {
final result = create();
if (uuid != null) result.uuid = uuid;
if (done != null) result.done = done;
if (error != null) result.error = error;
if (updateStateChanges != null)
result.updateStateChanges = updateStateChanges;
return result;
}