andThen<E7> method

Tuple7Parser<E1, E2, E3, E4, E5, E6, E7> andThen<E7>(
  1. Parser<E7> p
)

Creates the Tuple7Parser parser.

final p = p1.andThen(p2).andThen(p3).andThen(p4).andThen(p5).andThen(p6)
  .andThen(p7);

Implementation

Tuple7Parser<E1, E2, E3, E4, E5, E6, E7> andThen<E7>(Parser<E7> p) =>
    Tuple7Parser(p1, p2, p3, p4, p5, p6, p);