fix imports and make final params class

This commit is contained in:
Rafeek-Khoudare
2025-07-21 14:37:41 +03:00
parent 327be5aa54
commit 9754b3b589
3 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,5 @@
class BookableSpacesParams {
int currentPage;
final int currentPage;
BookableSpacesParams({
required this.currentPage,
});

View File

@ -1,4 +1,3 @@
import 'package:flutter/foundation.dart';
import 'package:syncrow_web/pages/access_management/manage_bookable_spaces/domain/models/bookable_space_model.dart';
import 'package:syncrow_web/utils/string_utils.dart';