copyWith method
Implementation
InsertTableReturningSchema copyWith(
{InsertTableSchema? schema, List<String>? returning}) {
return InsertTableReturningSchema(
schema ?? this.schema,
returning ?? this.returning,
);
}
InsertTableReturningSchema copyWith(
{InsertTableSchema? schema, List<String>? returning}) {
return InsertTableReturningSchema(
schema ?? this.schema,
returning ?? this.returning,
);
}