decode static method

Implementation

static GetPasskeyAuthenticationResponse decode(Object result) {
  result as List<Object?>;
  return GetPasskeyAuthenticationResponse(
    clientDataJSON: result[0]! as String,
    authenticatorData: result[1]! as String,
    signature: result[2]! as String,
    userHandle: result[3]! as String,
  );
}