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