timeHHMM property

String? get timeHHMM

Implementation

String? get timeHHMM {
  if (hourController.text.isNotEmpty && minController.text.isNotEmpty) {
    return "${hourController.text}:${minController.text}";
  }
  return null;
}