This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:core'; | |
// Define the start and end times | |
// These can now be "h:mm AM/PM" or "HH:mm" | |
String startTimeStr = "8:46 AM"; | |
String endTimeStr = "5:30 PM"; | |
// Example for 24-hour format: | |
// String startTimeStr = "08:46"; | |
// String endTimeStr = "17:30"; |