getFullName method

String getFullName()

Implementation

String getFullName() {
  String fullName = name;
  if (hasSchema()) {
    fullName = _schema! + "." + name;
  }
  return fullName;
}