ModelRelation constructor

ModelRelation({
  1. required IdUid id,
  2. required String name,
  3. required IdUid targetId,
  4. String? externalName,
  5. int? externalType,
})

Implementation

ModelRelation(
    {required this.id,
    required String name,
    required IdUid targetId,
    this.externalName,
    this.externalType})
    : _name = name,
      _targetId = targetId,
      uidRequest = false;