FeedbackClientConfig constructor
- required String baseUrl,
- required String appKey,
- FeedbackPlatform? defaultPlatform,
Implementation
FeedbackClientConfig({
required String baseUrl,
required this.appKey,
FeedbackPlatform? defaultPlatform,
}) : baseUrl = baseUrl.replaceAll(RegExp(r'/+$'), ''),
defaultPlatform = defaultPlatform ?? FeedbackPlatform.current;