copyWith method

  1. @override
MessageWebAppDataSent copyWith({
  1. String? buttonText,
})
override

Implementation

@override
MessageWebAppDataSent copyWith({
  String? buttonText,
}) =>
    MessageWebAppDataSent(
      buttonText: buttonText ?? this.buttonText,
    );