getDeviceInfos static method

  1. @override
Future<String?> getDeviceInfos()

Implementation

@override
static Future<String?> getDeviceInfos() async {
  var data = await methodChannel.invokeMethod('getDeviceInfos');
  return data;
}