fromJson static method

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

Implementation

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