Trio<F, S, T>.fromJson constructor

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

Implementation

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