toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (displayMode != null) 'displayMode': displayMode!,
  if (icons != null) 'icons': icons!,
  if (isPublished != null) 'isPublished': isPublished!,
  if (startUrl != null) 'startUrl': startUrl!,
  if (title != null) 'title': title!,
  if (versionCode != null) 'versionCode': versionCode!,
  if (webAppId != null) 'webAppId': webAppId!,
};