NotificationSchemeAndProjectMappingJsonBean.fromJson constructor

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

Implementation

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