import 'package:flutter/material.dart'; class PatientProfileCardModel { final String nameLine1; final String nameLine2; final dynamic route; final String icon; final bool isInPatient; final bool isDisable; final bool isLoading; final Function? onTap; final bool isDischargedPatient; final bool isSelectInpatient; final bool isDartIcon; final IconData? dartIcon; final Color? color; PatientProfileCardModel( this.nameLine1, this.nameLine2, this.route, this.icon, { this.isInPatient = false, this.isDisable = false, this.isLoading = false, this.onTap, this.isDischargedPatient = false, this.isSelectInpatient = false, this.isDartIcon = false, this.dartIcon, this.color, }); }