NotificationSchemeId.fromJson constructor

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

Implementation

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