Pair<F, S>.fromJson constructor

Pair<F, S>.fromJson(
  1. List json
)

Implementation

Pair.fromJson(List json): this(json[0] as F, json[1] as S);