string2inch static method

double? string2inch(
  1. String s
)

Implementation

static double? string2inch(String s){
  List? l=getLegalHeight(s);
  if(l==null)return null;
  return l[0]*12+l[1];
}