StringTransform constructor

StringTransform({
  1. bool capitalize = false,
  2. bool capitalizeFirst = false,
  3. bool withoutGarbage = false,
  4. bool removeSpace = false,
  5. String fallback = "",
})

Implementation

StringTransform({
  this.capitalize = false,
  this.capitalizeFirst = false,
  this.withoutGarbage = false,
  this.removeSpace = false,
  this.fallback = "",
});