getProductConfigString static method

  1. @Deprecated("This method is deprecated since version 1.7.0 and will be removed in the future versions of this SDK.")
Future<String?> getProductConfigString(
  1. String key
)

Returns the parameter value for the given key as a String.

Implementation

@Deprecated(
    "This method is deprecated since version 1.7.0 and will be removed in the future versions of this SDK.")

///Returns the parameter value for the given key as a String.
static Future<String?> getProductConfigString(String key) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('getString', {'key': key});
}