UpdateWebAppMessageSent constructor

const UpdateWebAppMessageSent({
  1. required int webAppLaunchId,
  2. dynamic extra,
  3. int? clientId,
})

A message was sent by an opened Web App, so the Web App needs to be closed

Implementation

const UpdateWebAppMessageSent({
  required this.webAppLaunchId,
  this.extra,
  this.clientId,
});