in example/lib/app_config.dart [27:37]
static Future<AppConfig> forEnvironment(String? env) async {
env = env ?? 'dev';
final contents = await rootBundle.loadString(
'assets/config/$env.json',
);
final json = jsonDecode(contents);
return AppConfig(
androidSiteKey: json['androidSiteKey'], iosSiteKey: json['iosSiteKey']);
}