timeHHMMSS property

String? get timeHHMMSS

Implementation

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