getVersionLib method
Implementation
@override
Future<String> getVersionLib() async {
try {
return await methodChannel.invokeMethod<String>('getVersionLib') ?? '';
}
on PlatformException catch(exception) {
log.severe('Exception when getting the library version: ${exception.message}');
return '';
}
}