setDefaultsMap 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<void> setDefaultsMap(
  1. Map<String, dynamic> defaults
)

Sets Default Values for Product Config using the passed Map

Implementation

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

///Sets Default Values for Product Config using the passed Map
static Future<void> setDefaultsMap(Map<String, dynamic> defaults) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('setDefaultsMap', {'defaults': defaults});
}