decode static method
Implementation
static AuthGenerateOptionAllowCredential decode(Object result) {
result as List<Object?>;
return AuthGenerateOptionAllowCredential(
id: result[0]! as String,
type: result[1]! as String,
transports: (result[2] as List<Object?>?)!.cast<String>(),
);
}