setCrashlyticsCustomKey method

Future<void> setCrashlyticsCustomKey(
  1. String key,
  2. dynamic value
)

Set custom key-value for Crashlytics

Implementation

Future<void> setCrashlyticsCustomKey(String key, dynamic value) async {
  await _crashlytics.setCustomKey(key, value);
  log('🔥 Crashlytics Custom Key: $key = $value');
}