setInitialValues method

  1. @override
MethodChannelFirebaseCrashlytics setInitialValues({
  1. required bool isCrashlyticsCollectionEnabled,
})
override

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 any unnecessary async calls.

Implementation

@override
MethodChannelFirebaseCrashlytics setInitialValues({
  required bool isCrashlyticsCollectionEnabled,
}) {
  _isCrashlyticsCollectionEnabled = isCrashlyticsCollectionEnabled;
  return this;
}