RoundTripParameters.fromJson constructor

RoundTripParameters.fromJson(
  1. Map<String, dynamic> json
)

Deserializes a JSON-compatible map to create an instance.

Used internally, not intended for direct use by consumers. The expected map structure may change without notice.

Implementation

factory RoundTripParameters.fromJson(final Map<String, dynamic> json) {
  return RoundTripParameters(
    range: json['range'],
    rangeType: RangeTypeExtension.fromId(json['rangeType']),
    randomSeed: json['randomSeed'] ?? 0,
  );
}