GSField.time constructor
      
      GSField.time({})
     
    
    
Implementation
GSField.time({
  Key? key,
  required String tag,
  String? title,
  String? errorMessage,
  String? helpMessage,
  Widget? prefixWidget,
  Widget? postfixWidget,
  bool? showTitle,
  bool? required,
  GSFieldStatusEnum? status,
  int? weight,
  RegExp? validateReg,
  int? maxLength,
  String? hint,
  TimeOfDay? initialTime,
  // TimePickerType ? timePickerType ,
}) : super(key: key) {
  model = GSTimePickerModel(
    type: GSFieldTypeEnum.time,
    tag: tag,
    showTitle: showTitle ?? true,
    title: title,
    errorMessage: errorMessage,
    helpMessage: helpMessage,
    prefixWidget: prefixWidget,
    postfixWidget: postfixWidget,
    required: required,
    status: status,
    weight: weight,
    hint: hint,
    initialTime: initialTime,
    timePickerType: TimePickerType.english,
  );
}