UpcomingNotification.fromJson constructor

UpcomingNotification.fromJson(
  1. Map json_
)

Implementation

UpcomingNotification.fromJson(core.Map json_)
    : this(
        enableNotification: json_.containsKey('enableNotification')
            ? json_['enableNotification'] as core.bool
            : null,
      );