validateVoiceServices static method

String? validateVoiceServices(
  1. String? value
)

Implementation

static String? validateVoiceServices(String? value) {
  if (value == null || value.isEmpty) {
    return 'Value cannot be empty';
  }

  return null;
}