mirror of
https://github.com/hamaluik/timecop.git
synced 2025-08-26 08:41:31 +08:00
Null safety
This commit is contained in:
@ -15,11 +15,11 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class ProjectDescriptionPair extends Equatable {
|
||||
final int project;
|
||||
final String description;
|
||||
final int? project;
|
||||
final String? description;
|
||||
|
||||
ProjectDescriptionPair(this.project, this.description);
|
||||
|
||||
@override
|
||||
List<Object> get props => [project, description];
|
||||
List<Object?> get props => [project, description];
|
||||
}
|
||||
|
Reference in New Issue
Block a user