validateFCC214 static method

String? validateFCC214(
  1. String? value
)

Ensures that a user provides

Implementation

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

  // TODO: what are the requirements of an FCC219 number???

  return null;
}