decode static method

OWRegistrationResponse decode(
  1. Object result
)

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,
  );
}