createIcon method

dynamic createIcon(
  1. String address,
  2. int scale
)

Implementation

createIcon(String address, int scale) {
  seedrand(address);

  HSL color = createColor();

  HSL bgColor = createColor();
  HSL spotColor = createColor();
  List imageData = createImageData();
  if (kDebugMode) {
    print(color.toString());
    print(bgColor.toString());
    print(spotColor.toString());
    print(imageData);
  }
}