TextAppendat constructor

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

Implementation

TextAppendat({
  required String argument,
  bool condition = true,
  IAppendCallback<String>? callback,
}) : super(
        argument: argument,
        condition: condition,
        callback: callback,
      ) {
  _quote = false;
}