AuthenticatorAssertionResponse.fromMap constructor

AuthenticatorAssertionResponse.fromMap(
  1. Map map
)

Implementation

factory AuthenticatorAssertionResponse.fromMap(Map<dynamic, dynamic> map) {
  return AuthenticatorAssertionResponse(
      authenticatorData: map['authenticatorData'],
      clientDataJson: map['clientDataJson'],
      credentialId: map['credentialId'],
      signature: map['signature']);
}