copyWith method
Implementation
Caption copyWith({
String? text,
int? fontStyle,
String? fontColor,
}) =>
Caption(
text: text ?? this.text,
fontStyle: fontStyle ?? this.fontStyle,
fontColor: fontColor ?? this.fontColor,
);