action property

R Function(A, B, C, D, E, F) get action

Wraps the 6-argument function in a type-safe action.

Implementation

R Function(A, B, C, D, E, F) get action => (a, b, c, d, e, f) => batch(
      () => untracked(() => this(a, b, c, d, e, f)),
    );