NotificationSchemeEventTypeId.fromJson constructor

NotificationSchemeEventTypeId.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory NotificationSchemeEventTypeId.fromJson(Map<String, Object?> json) {
  return NotificationSchemeEventTypeId(
    id: json[r'id'] as String? ?? '',
  );
}