// This file holds a class to represent the configuration/settings of the app import 'package:json_annotation/json_annotation.dart'; part 'generated/config.g.dart'; @JsonSerializable() class RTimeConfig { final String language; RTimeConfig({required this.language}); factory RTimeConfig.fromJson(Map json) => _$PersonFromJson(json); Map toJson() => _$PersonToJson(this); }