14 lines
446 B
Dart
14 lines
446 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'config.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Config _$ConfigFromJson(Map<String, dynamic> json) {
|
|
return Config(
|
|
env: json['env'] as String,
|
|
production: json['production'] as bool,
|
|
apiKey: json['apiKey'] as String);
|
|
}
|