Files
FlutterUnit/lib/blocs/point_comment/point_comment_event.dart
2020-09-03 14:38:47 +08:00

20 lines
420 B
Dart

import 'package:equatable/equatable.dart';
import 'package:flutter_unit/model/github/issue.dart';
/// create by 张风捷特烈 on 2020/9/3
/// contact me by email 1981462002@qq.com
/// 说明:
abstract class PointCommentEvent extends Equatable {}
class EventLoadPointComment extends PointCommentEvent {
final Issue point;
EventLoadPointComment(this.point);
@override
List<Object> get props => [point];
}