A1Ref constructor

A1Ref(
  1. String value
)

Creates A1Ref Can be used to resolve indices of cell reference in A1 notation

Implementation

A1Ref(String value)
    : assert(
        _regExp.hasMatch(value.trim()),
        'invalid A1 notation reference ($value)',
      ),
      value = value.toUpperCase().trim();