NotificationSchemeAndProjectMappingJsonBean.fromJson constructor
Implementation
factory NotificationSchemeAndProjectMappingJsonBean.fromJson(
Map<String, Object?> json) {
return NotificationSchemeAndProjectMappingJsonBean(
notificationSchemeId: json[r'notificationSchemeId'] as String?,
projectId: json[r'projectId'] as String?,
);
}