decode static method

OWUserProfile decode(
  1. Object result
)

Implementation

static OWUserProfile decode(Object result) {
  result as List<Object?>;
  return OWUserProfile(
    profileId: result[0]! as String,
  );
}