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