getDeviceInfo method
Implementation
@override
Future<String?> getDeviceInfo() async {
try {
final version = await methodChannel.invokeMethod<String>('getDeviceInfo');
return version;
} catch (e) {
return "Not implented because of $e";
}
}