getDeviceInfoAndroid method

  1. @override
Future<DeviceInfoAndroid> getDeviceInfoAndroid()
override

Implementation

@override
Future<DeviceInfoAndroid> getDeviceInfoAndroid() async {
  final map = await methodChannel.invokeMapMethod<String, dynamic>('getDeviceInfo');
  return DeviceInfoAndroid.fromMap(map!);
}