copyWith method

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

Implementation

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