modifyTint abstract method

ScalableImage modifyTint({
  1. required BlendMode newTintMode,
  2. required Color? newTintColor,
})

Return a new ScalableImage like this one, with tint modified.

Note that the new instance shares most of its underlying state with the original, so it does not use much memory.

Implementation

ScalableImage modifyTint(
    {required BlendMode newTintMode, required Color? newTintColor});