RelInfo<SourceEntityT>.toOneBacklink constructor

const RelInfo<SourceEntityT>.toOneBacklink(
  1. int id,
  2. int objectId,
  3. ToOne srcFieldAccessor(
    1. SourceEntityT
    )
)

Create info for a ToOne relation field backlink.

Implementation

const RelInfo.toOneBacklink(
    int id, int objectId, ToOne Function(SourceEntityT) srcFieldAccessor)
    : this._(RelType.toOneBacklink, id, objectId, srcFieldAccessor);