You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
758 B
Dart
34 lines
758 B
Dart
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,
|
|
});
|
|
}
|