getSeeSoVersion method

  1. @override
Future<String?> getSeeSoVersion()
override

Implementation

@override
Future<String?> getSeeSoVersion() async {
  dynamic result = await methodChannel
      .invokeMapMethod(SeeSoPluginMethod.GET_SEESO_VERSION.name);
  return result[SeeSoPluginResult.SEESO_VERSION.name];
}