setInitialValues method

  1. @protected
FirebaseRemoteConfigPlatform setInitialValues({
  1. required Map remoteConfigValues,
})

Sets any initial values on the instance.

Platforms with Method Channels can provide constant values to be available before the instance has initialized to prevent unnecessary async calls.

Implementation

@protected
FirebaseRemoteConfigPlatform setInitialValues({
  required Map<dynamic, dynamic> remoteConfigValues,
}) {
  throw UnimplementedError('setInitialValues() is not implemented');
}