copyWith method
Implementation
MutationCommand copyWith({
String? sql,
List<Object?>? binds,
String? table,
String? operation,
Object? entity,
}) {
return MutationCommand(
sql: sql ?? this.sql,
binds: binds ?? this.binds,
table: table ?? this.table,
operation: operation ?? this.operation,
entity: entity ?? this.entity,
);
}