decode static method
Implementation
static OWRegistrationResponse decode(Object result) {
result as List<Object?>;
return OWRegistrationResponse(
userProfile: OWUserProfile.decode(result[0]! as List<Object?>),
customInfo: result[1] != null
? OWCustomInfo.decode(result[1]! as List<Object?>)
: null,
);
}