validateDropDown method

String? validateDropDown(
  1. BuildContext context, {
  2. String? message,
})

Implementation

String? validateDropDown(BuildContext context,{String? message}) {
  if (this == null) {
    return message ?? tr(context,"fillField");
  }
  return null;
}