fromJson static method

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

Implementation

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