copyWith method

ColumnItem copyWith({
  1. String? label,
  2. String? value,
})

Implementation

ColumnItem copyWith({String? label, String? value}) {
  return ColumnItem(
    label: label ?? this.label,
    value: value ?? this.value,
  );
}