TF-836: Create module forward

This commit is contained in:
ManhNTX
2022-08-16 10:56:06 +07:00
committed by Dat H. Pham
parent 12acee9f3a
commit 14d70cc1ab
13 changed files with 404 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import 'package:equatable/equatable.dart';
abstract class Forward with EquatableMixin {
@override
List<Object?> get props => [];
}