copyWith method

InsertTableReturningSchema copyWith({
  1. InsertTableSchema? schema,
  2. List<String>? returning,
})

Implementation

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