decode static method
Implementation
static RelyingParty decode(Object result) {
result as List<Object?>;
return RelyingParty(
name: result[0]! as String,
id: result[1]! as String,
);
}
static RelyingParty decode(Object result) {
result as List<Object?>;
return RelyingParty(
name: result[0]! as String,
id: result[1]! as String,
);
}