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