getProductConfigBoolean 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<bool?> getProductConfigBoolean(
  1. String key
)

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

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 boolean.
static Future<bool?> getProductConfigBoolean(String key) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('getBoolean', {'key': key});
}