copyWith method

  1. @override
MessageWebAppDataReceived copyWith({
  1. String? buttonText,
  2. String? data,
})
override

Implementation

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