signature property

String get signature

Stable identifier that captures both sides of the storage mapping.

Implementation

String get signature =>
    '${sourceModel.databaseName}.${sourceField.databaseName}|${sourceKeyFields.join(',')}|${sourceJoinColumns.join(',')}|'
    '${targetModel.databaseName}.${targetField.databaseName}|${targetKeyFields.join(',')}|${targetJoinColumns.join(',')}';