Pair<F, S>.fromJson constructor
Pair<F, S>.fromJson (
- List json
Implementation
Pair.fromJson(List json): this(json[0] as F, json[1] as S);
Pair.fromJson(List json): this(json[0] as F, json[1] as S);