Skip to content
Snippets Groups Projects
Select Git revision
  • 77fabc995d159fa4cc97f214a07d787c6a27d99b
  • master default protected
2 results

delete_patient.dart

Blame
  • Forked from an inaccessible project.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    delete_patient.dart 187 B
    import 'package:rescueapp/events-patient/patient_event.dart';
    
    class DeletePatient extends PatientEvent {
      int patientIndex;
    
      DeletePatient(int index) {
        patientIndex = index;
      }
    }