This makes the avatar cropper much more consistent with the background cropper. Fixes #168.
13 lines
242 B
Dart
13 lines
242 B
Dart
part of 'crop_bloc.dart';
|
|
|
|
abstract class CropEvent {}
|
|
|
|
class ImageCroppedEvent extends CropEvent {}
|
|
|
|
class ResetImageEvent extends CropEvent {}
|
|
|
|
class SetImageEvent extends CropEvent {
|
|
SetImageEvent(this.image);
|
|
final Uint8List image;
|
|
}
|