This repository has been archived on 2024-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
ftc_patient_app/lib/models/clients/careNoteFormsRequests/HtmlTableOption.dart

13 lines
223 B
Dart

import 'package:get/get_rx/get_rx.dart';
class HtmlTableOption {
String id;
String requirements;
final RxBool isChecked = false.obs;
HtmlTableOption({
required this.id,
required this.requirements,
});
}