tint static method

TransformationData tint({
  1. String? color = "000000",
})

Basic Transformations

  • color : color (Default: "000000")

Returns TransformationData.

Implementation

static TransformationData tint({String? color = "000000"}) {
  // Call the generated class method
  return Tint().tint(color);
}