getDeviceInfo static method

Future<Map<String, String>> getDeviceInfo()

Implementation

static Future<Map<String, String>> getDeviceInfo() async {
  final Map<String, String> deviceInfo = Map<String, String>.from(await _channel.invokeMethod('getDeviceInfo'));
  return deviceInfo;
}