Args3<A, A2, A3> constructor

const Args3<A, A2, A3>(
  1. A arg1,
  2. A2 arg2,
  3. A3 arg3
)

A class that represents a set of three arguments.

Implementation

const Args3(A arg1, A2 arg2, this.arg3) : super(arg1, arg2);