getVersion method
Get app version
Implementation
@override
Future<PHVersion> getVersion() => _invokeMethod<PHVersion>(
method: Functions.getVersion,
postProcess: (value) {
debugPrint("$value");
return PHVersion.fromCodecMessage(Map<String, dynamic>.from(value));
},
);