androidInfo property

Future<AndroidDeviceInfo> androidInfo

Information derived from android.os.Build.

See: https://developer.android.com/reference/android/os/Build.html

Implementation

Future<AndroidDeviceInfo> get androidInfo async =>
    _cachedAndroidDeviceInfo ??=
        AndroidDeviceInfo.fromMap((await _platform.deviceInfo()).data);