copyWith method

LookAndFeelHeadings copyWith({
  1. String? color,
})

Implementation

LookAndFeelHeadings copyWith({String? color}) {
  return LookAndFeelHeadings(
    color: color ?? this.color,
  );
}