copyWith method

UpdateWebAppMessageSent copyWith({
  1. int? webAppLaunchId,
})

Implementation

UpdateWebAppMessageSent copyWith({int? webAppLaunchId}) =>
    UpdateWebAppMessageSent(
      webAppLaunchId: webAppLaunchId ?? this.webAppLaunchId,
    );