mirror of
https://github.com/lifegpc/eh_downloader_flutter.git
synced 2026-07-08 01:30:28 +08:00
10 lines
195 B
Dart
10 lines
195 B
Dart
import 'dart:typed_data';
|
|
|
|
Future<Uint8List> jpgToPng(Uint8List data) async {
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
Future<Uint8List> webpToPng(Uint8List data) async {
|
|
throw UnimplementedError();
|
|
}
|