getDeviceInfo method

  1. @override
Future<Map<String, String>?> getDeviceInfo()
override

Implementation

@override
Future<Map<String, String>?> getDeviceInfo() async {
  final result = await methodChannel.invokeMapMethod<String, String>('getDeviceInfo');
  return result;
}