EventReminder.fromJson constructor

EventReminder.fromJson(
  1. Map json_
)

Implementation

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