toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  HashMap<String, dynamic> dic = HashMap();
  dic['appID'] = appID;
  dic['licenseFilePath'] = licenseFilePath;
  if (bundleID != null) {
    dic['bundleID'] = bundleID;
  }
  if (appName != null) {
    dic['appName'] = appName;
  }
  if (channel != null) {
    dic['channel'] = channel;
  }
  if (appVersion != null) {
    dic['appVersion'] = appVersion;
  }
  return dic;
}