AsyncOperationId constructor
AsyncOperationId({
- UUID? id,
- AsyncOperationType? type,
Implementation
factory AsyncOperationId({
$0.UUID? id,
AsyncOperationType? type,
}) {
final result = create();
if (id != null) result.id = id;
if (type != null) result.type = type;
return result;
}