Reminder.fromJson constructor

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

Implementation

Reminder.fromJson(Map<String, dynamic> json) {
  minutes = json['minutes'] as int;
}