decode static method
Implementation
static RegisterResponse decode(Object result) {
result as List<Object?>;
return RegisterResponse(
id: result[0]! as String,
rawId: result[1]! as String,
clientDataJSON: result[2]! as String,
attestationObject: result[3]! as String,
transports: (result[4] as List<Object?>?)!.cast<String?>(),
clientExtensionResults: (result[5] as Map<Object?, Object?>?)
?.cast<String?, Object?>(),
);
}