copyWith method

OrderItemModel copyWith({
  1. String? column,
  2. bool? asc,
})

Implementation

OrderItemModel copyWith({
  String? column,
  bool? asc,
}) {
  return OrderItemModel(
    column: column ?? this.column,
    asc: asc ?? this.asc,
  );
}