relationshipsTables property

List<String> relationshipsTables

Returns the tables of the relationships.

Implementation

List<String> get relationshipsTables => _relationshipsTables ??= <String>{
      ...?relationships
          ?.expand((e) => e.referenceTables.where((t) => t != table)),
    }.toList();