getProductConfigDouble 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<double?> getProductConfigDouble(
  1. String key
)

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

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 double.
static Future<double?> getProductConfigDouble(String key) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('getDouble', {'key': key});
}