getPlatformVersion method
Implementation
@override
Future<String> getPlatformVersion() async {
final methodName = EyedidMethodName.getVersionName.name;
final versionMap =
await methodChannel.invokeMethod<Map<dynamic, dynamic>>(methodName);
return versionMap?[EyedidArgumentKey.eyedidVersion.name] ?? "";
}