then method

ListParser then(
  1. Parser other
)

Shortcut for chain-ing two parsers together.

Implementation

ListParser<dynamic> then(Parser other) => chain<dynamic>([this, other]);