setDeviceModel method
Implementation
@override
Future<void> setDeviceModel(String deviceModel) async {
Map<String, dynamic> arguments = {
NpawConstants.deviceModel: deviceModel
};
await methodChannel.invokeMethod<void>('setDeviceModel', arguments);
}