TwoFactorProto constructor

TwoFactorProto({
  1. Int64? id,
  2. Int64? accountId,
  3. 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;
}