toMap method

Map<String, Object> toMap()

Converts this summary to a map using the native field names.

Implementation

Map<String, Object> toMap() {
  return <String, Object>{
    'manufacturer': manufacturer,
    'brand': brand,
    'model': model,
    'device': device,
    'product': product,
    'androidSdk': androidSdk,
    'androidRelease': androidRelease,
  };
}