toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
  if (appEntrypointPath != null) 'appEntrypointPath': appEntrypointPath,
  if (appId != null) 'appId': appId,
  if (appInstanceId != null) 'appInstanceId': appInstanceId,
  if (appOrigin != null) 'appOrigin': appOrigin,
  if (appUrl != null) 'appUrl': appUrl,
  if (authUrl != null) 'authUrl': authUrl,
  if (dwdsVersion != null) 'dwdsVersion': dwdsVersion,
  if (extensionUrl != null) 'extensionUrl': extensionUrl,
  if (isInternalBuild != null) 'isInternalBuild': isInternalBuild,
  if (isFlutterApp != null) 'isFlutterApp': isFlutterApp,
  if (workspaceName != null) 'workspaceName': workspaceName,
  if (tabUrl != null) 'tabUrl': tabUrl,
  if (tabId != null) 'tabId': tabId,
};