Appendat<T> constructor

Appendat<T>({
  1. required T argument,
  2. bool condition = true,
  3. IAppendCallback<T>? callback,
})

Implementation

Appendat(
    {required T argument,
    bool condition = true,
    IAppendCallback<T>? callback}) {
  _argument = argument;
  _condition = condition;
  _callback = callback;
}