copyWith method

GetTextCompositionStyleExample copyWith({
  1. String? name,
  2. int? exampleNumber,
})

Implementation

GetTextCompositionStyleExample copyWith({String? name, int? exampleNumber}) =>
    GetTextCompositionStyleExample(
      name: name ?? this.name,
      exampleNumber: exampleNumber ?? this.exampleNumber,
    );