isImplicitManyToManyTableName function

bool isImplicitManyToManyTableName(
  1. String tableName
)

Returns whether tableName belongs to implicit relation storage.

Implementation

bool isImplicitManyToManyTableName(String tableName) {
  return tableName.startsWith(kImplicitManyToManyTablePrefix);
}