TwoFactorProto constructor
TwoFactorProto({
- Int64? id,
- Int64? accountId,
- String? browserFingerprint,
Implementation
factory TwoFactorProto({
$fixnum.Int64? id,
$fixnum.Int64? accountId,
$core.String? browserFingerprint,
}) {
final result = create();
if (id != null) result.id = id;
if (accountId != null) result.accountId = accountId;
if (browserFingerprint != null)
result.browserFingerprint = browserFingerprint;
return result;
}