userProfile property

UserProfileTable get userProfile

Implementation

_i2.UserProfileTable get userProfile {
  if (_userProfile != null) return _userProfile!;
  _userProfile = _i1.createRelationTable(
    relationFieldName: 'userProfile',
    field: UserProfileImage.t.userProfileId,
    foreignField: _i2.UserProfile.t.id,
    tableRelation: tableRelation,
    createTable: (foreignTableRelation) =>
        _i2.UserProfileTable(tableRelation: foreignTableRelation),
  );
  return _userProfile!;
}