remoteConfig property

Map<String, dynamic>? remoteConfig

A custom dictionary configured in Adapty Dashboard for this paywall (same as remoteConfigString)

Implementation

Map<String, dynamic>? get remoteConfig {
  final data = remoteConfigString;
  if (data == null || data.isEmpty) return null;
  return json.decode(data);
}