toJson method

Map<String, dynamic> toJson()

Converts the AyahRangeInfo to JSON

Implementation

Map<String, dynamic> toJson() {
  return {
    'start': start,
    'end': end,
    'count': count,
  };
}