SvgPathStringSource constructor

SvgPathStringSource(
  1. String _string
)

Implementation

SvgPathStringSource(this._string)
    : assert(_string != null), // ignore: unnecessary_null_comparison
      _previousCommand = SvgPathSegType.unknown,
      _idx = 0,
      _length = _string.length {
  _skipOptionalSvgSpaces();
}