image property
UserProfileImageTable
get
image
Implementation
_i3.UserProfileImageTable get image {
if (_image != null) return _image!;
_image = _i1.createRelationTable(
relationFieldName: 'image',
field: UserProfile.t.imageId,
foreignField: _i3.UserProfileImage.t.id,
tableRelation: tableRelation,
createTable: (foreignTableRelation) =>
_i3.UserProfileImageTable(tableRelation: foreignTableRelation),
);
return _image!;
}