ShuffleConfig.fromJson constructor

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

Implementation

factory ShuffleConfig.fromJson(Map<String, dynamic> json) {
  return ShuffleConfig(
    seed: json['Seed'] as int,
  );
}