Code is B-E-A-U-TIFUL! All complies to standards.
Complies to flutter/dart 'pedantic' coding standards (their name, not mine)
This commit is contained in:
parent
19021a9a09
commit
55310068ea
55 changed files with 915 additions and 785 deletions
2
lib/env/dev.dart
vendored
2
lib/env/dev.dart
vendored
|
@ -3,4 +3,4 @@ import 'package:json_annotation/json_annotation.dart';
|
|||
part 'dev.g.dart';
|
||||
|
||||
@JsonLiteral('dev.json', asConst: true)
|
||||
Map<String, dynamic> get config => _$configJsonLiteral;
|
||||
Map<String, dynamic> get config => _$configJsonLiteral;
|
||||
|
|
2
lib/env/prod.dart
vendored
2
lib/env/prod.dart
vendored
|
@ -3,4 +3,4 @@ import 'package:json_annotation/json_annotation.dart';
|
|||
part 'prod.g.dart';
|
||||
|
||||
@JsonLiteral('prod.json', asConst: true)
|
||||
Map<String, dynamic> get config => _$configJsonLiteral;
|
||||
Map<String, dynamic> get config => _$configJsonLiteral;
|
||||
|
|
Reference in a new issue