decode static method

PlaytimeUserProfile decode(
  1. Object result
)

Implementation

static PlaytimeUserProfile decode(Object result) {
  result as List<Object?>;
  return PlaytimeUserProfile(
    gender: result[0] as String?,
    birthday: result[1] as String?,
  );
}