toMap method

  1. @Deprecated('[toMap] method will be discontinued')
Map<String, dynamic> toMap()

Serializes AndroidBuildVersion to map.

Implementation

@Deprecated('[toMap] method will be discontinued')
Map<String, dynamic> toMap() {
  return {
    'baseOS': baseOS,
    'sdkInt': sdkInt,
    'release': release,
    'codename': codename,
    'incremental': incremental,
    'previewSdkInt': previewSdkInt,
    'securityPatch': securityPatch,
  };
}