fromJson static method

Transformer fromJson(
  1. String s, {
  2. int? seed,
})

Implementation

static Transformer fromJson(String s, {int? seed}) =>
    fromMap(jsonDecode(s) as Map<String, dynamic>, seed: seed);