setCrashlyticsCustomKey method
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');
}