AuthAccount constructor
AuthAccount({})
Implementation
AuthAccount({
required this.providerId,
required this.providerAccountId,
this.userId,
this.accessToken,
this.refreshToken,
this.expiresAt,
Map<String, dynamic>? metadata,
}) : metadata = metadata == null
? <String, dynamic>{}
: Map<String, dynamic>.from(metadata);