initializeDevice method
Implementation
@override
Future<bool?> initializeDevice() async {
try {
final result = await methodChannel.invokeMethod<bool>(METHOD_INIT);
return result;
} on PlatformException catch (e) {
throw _libException(e);
}
}