WebPDecoder constructor

WebPDecoder([
  1. List<int>? bytes
])

Implementation

WebPDecoder([List<int>? bytes]) {
  if (bytes != null) {
    startDecode(bytes);
  }
}