copyWith method

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

Implementation

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