create static method

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

Implementation

static TextAppendat create(
  String argument, {
  bool condition = true,
  IAppendCallback<String>? callback,
}) {
  return TextAppendat(
    argument: argument,
    condition: condition,
    callback: _SafeStringAppendatCallback(callback),
  );
}