toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  assert(platform.isNotEmpty);
  return {
    "isDebug" : isDebug,
    "isTestEnv" : isTestEnv,
    "SDKType" : "",
    "userId" : userId,
    "appId" : appId,
    "appKey" : appKey,
    "bundleId" : bundleId,
    "appName" : "",
    "appVersion" : "",
    "appChannel" : "",
    "buglyVersion" : "",
    "launchId" : "",
    "deviceId" : "",
    "platform" : platform
  };
}