toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    'email': email,
    'name': name,
    'profileImage': profileImage,
    'authConnectionId': authConnectionId,
    'userId': userId,
    'authConnection': authConnection,
    'groupedAuthConnectionId': groupedAuthConnectionId,
    'dappShare': dappShare,
    'idToken': idToken,
    'oAuthIdToken': oAuthIdToken,
    'oAuthAccessToken': oAuthAccessToken,
    'isMfaEnabled': isMfaEnabled
  };
}