tint method

Color tint([
  1. int amount = 10
])

Implementation

Color tint([int amount = 10]) => mix(
      const Color.fromRGBO(255, 255, 255, 1.0),
      amount,
    );