WebApp constructor

const WebApp({
  1. required String shortName,
  2. required String title,
  3. required String description,
  4. required Photo photo,
  5. Animation? animation,
})

Describes a Web App. Use getInternalLink with internalLinkTypeWebApp to share the Web App

Implementation

const WebApp({
  required this.shortName,
  required this.title,
  required this.description,
  required this.photo,
  this.animation,
});