prefixName method

void prefixName()

Implementation

void prefixName() {
  if (prefix != null && !name.contains(prefix!)) name = prefix! + name;
}