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