challenge property

SecretChallengeTable get challenge

Implementation

_i2.SecretChallengeTable get challenge {
  if (_challenge != null) return _challenge!;
  _challenge = _i1.createRelationTable(
    relationFieldName: 'challenge',
    field: EmailAccountRequest.t.challengeId,
    foreignField: _i2.SecretChallenge.t.id,
    tableRelation: tableRelation,
    createTable: (foreignTableRelation) =>
        _i2.SecretChallengeTable(tableRelation: foreignTableRelation),
  );
  return _challenge!;
}