ReminderDto.fromJson constructor

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

Implementation

factory ReminderDto.fromJson(Map<String, dynamic> json) {
  return ReminderDto(
    days: json["days"] as int,
  );
}