get static method

int? get(
  1. int? i
)

Implementation

static int? get(int? i){
  if(webGL.contains(i)){
    return i;
  }
  else{
    return null;
  }
}