EventReminder.fromJson constructor

EventReminder.fromJson(
  1. Map json_
)

Implementation

EventReminder.fromJson(core.Map json_)
  : this(
      method: json_['method'] as core.String?,
      minutes: json_['minutes'] as core.int?,
    );