internalName property

String internalName
inherited

Internal use only.

Name of the table that stores the underlying data.

Implementation

String get internalName {
  if (localOnly) {
    return "ps_data_local__$name";
  } else {
    return "ps_data__$name";
  }
}