TOTP constructor

TOTP({
  1. String? totpId,
  2. String? name,
  3. bool? isVerified,
})

Implementation

factory TOTP({
  $core.String? totpId,
  $core.String? name,
  $core.bool? isVerified,
}) {
  final $result = create();
  if (totpId != null) {
    $result.totpId = totpId;
  }
  if (name != null) {
    $result.name = name;
  }
  if (isVerified != null) {
    $result.isVerified = isVerified;
  }
  return $result;
}