toMap method

Map toMap()

Implementation

Map toMap() {
  var map = Map();
  map['activityInfo'] = activityInfo?.toMap();
  map['icon'] = icon;
  map['isDefault'] = isDefault;
  map['isInstantAppAvailable'] = isInstantAppAvailable;
  map['labelRes'] = labelRes;
  map['match'] = match;
  map['nonLocalizedLabel'] = nonLocalizedLabel;
  map['preferredOrder'] = preferredOrder;
  map['priority'] = priority;
  map['resolvePackageName'] = resolvePackageName;
  // map['base64_icon']
  map['label'] = _label;
  return map;
}