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