NotificationProperty.fromJson constructor

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

Implementation

factory NotificationProperty.fromJson(Map<String, dynamic> json) {
  return NotificationProperty(
    notifyDelayAfter: json['NotifyDelayAfter'] as int?,
  );
}