trphoenix
2018-11-12 29fbfc5dd1d55d189f23eb6d32f000252f92985f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2017, the Dart project authors.  Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
 
import 'package:json_annotation/json_annotation.dart';
part 'json_literal.g.dart';
 
@JsonLiteral('json_literal.json')
List get data => _$dataJsonLiteral;
 
@JsonLiteral('json_literal.json', asConst: true)
List get asConst => _$asConstJsonLiteral;
 
/// From https://github.com/minimaxir/big-list-of-naughty-strings
/// blns.json @ 96f50492b278aeb2bfa40c4acbdbf6311312bf30
@JsonLiteral('big-list-of-naughty-strings.json', asConst: true)
List get naughtyStrings => _$naughtyStringsJsonLiteral;