17 lines
294 B
Dart
17 lines
294 B
Dart
import 'dart:typed_data';
|
|
import 'dart:isolate';
|
|
|
|
class ProcessingRequest {
|
|
final Uint8List bytes;
|
|
final int width;
|
|
final int height;
|
|
final SendPort? sendPort;
|
|
|
|
ProcessingRequest({
|
|
required this.bytes,
|
|
required this.width,
|
|
required this.height,
|
|
this.sendPort,
|
|
});
|
|
}
|