android property

Implementation

Future<AndroidDeviceInfo?> get android async {
  if (isAndroid && !isWeb) {
    return _androidInfo ??= await _deviceInfoPlugin.androidInfo;
  }
  return null;
}