Files
2021-07-29 11:42:41 +07:00

10 lines
179 B
Dart

import 'package:equatable/equatable.dart';
class Password with EquatableMixin {
final String value;
Password(this.value);
@override
List<Object> get props => [value];
}