Zone.byCode constructor

Zone.byCode(
  1. String code
)

Implementation

factory Zone.byCode(String code) {
  final xy = XY.byCode(code);
  return Zone.byXY(xy.x!, xy.y!, code.length - 2);
}