image property

Implementation

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