gifsicle 1.0.1
gifsicle: ^1.0.1 copied to clipboard
dart:io process wrapper for local or Docker-backed gifsicle workflows.
import 'package:gifsicle/gifsicle.dart';
Future<void> main() async {
bool supported = await Gifsicle.isSupported();
print('gifsicle supported: $supported');
if (!supported) {
return;
}
GifsicleClient client = GifsicleClient();
String version = await client.version();
print(version);
}