getModel method

Future<String?> getModel()

get the android device model name

Implementation

Future<String?> getModel() async {
  return await methodChannel.invokeMethod<String>('getModel');
}