SlotData.fromJson constructor

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

Implementation

SlotData.fromJson(Map<String, dynamic> json) {
  slot = json['slot'] != null ? new Slot.fromJson(json['slot']) : null;
}