FeedbackClientConfig constructor

FeedbackClientConfig({
  1. required String baseUrl,
  2. required String appKey,
  3. FeedbackPlatform? defaultPlatform,
})

Implementation

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