copyWith method

TitleOptions copyWith({
  1. String? text,
  2. TextStyle? style,
})

Implementation

TitleOptions copyWith({
  String? text,
  TextStyle? style
}) {
  return TitleOptions(
      text: text ?? this.text,
      style: style ?? this.style
  );
}