RareBooleanData.fromJson constructor

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

Implementation

factory RareBooleanData.fromJson(Map<String, dynamic> json) {
  return RareBooleanData(
    index: (json['index'] as List).map((e) => e as int).toList(),
  );
}