stringToTimeWindow function

MBTimeWindow? stringToTimeWindow(
  1. String value
)

Implementation

MBTimeWindow? stringToTimeWindow(String value) {
  try {
    return MBTimeWindow.values.firstWhere((e) => e.name == value);
  } catch (e) {
    return null;
  }
}