decodeIco function

Image? decodeIco(
  1. Uint8List bytes, {
  2. int? frame,
})

Decode an ICO image.

Implementation

Image? decodeIco(Uint8List bytes, {int? frame}) =>
    IcoDecoder().decode(bytes, frame: frame);