dp static method

dynamic dp(
  1. dynamic number
)

Implementation

static dp(number) {
  return px(number * 2);
}