isNameValid method

bool isNameValid(
  1. String name
)

Validates if the given name is at least 6 characters long and not empty.

Implementation

bool isNameValid(String name) => name.length >= 6 && name.isNotEmpty;