JsonKey<T, Serialized>.parser constructor
JsonKey<T, Serialized>.parser (
- String key,
- T parser(
- Serialized
Create a JsonKey that parses a value from json.
Implementation
JsonKey.parser(this.key, T Function(Serialized) parser)
: _state = _ParserState(parser),
super();