fromJson static method

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

Implementation

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