hesabixArc/hesabixUI/hesabix_ui/lib/pages/business/checks_page.dart

21 lines
372 B
Dart
Raw Normal View History

2025-10-11 02:32:13 +03:30
import 'package:flutter/material.dart';
import '../../core/auth_store.dart';
class ChecksPage extends StatelessWidget {
final int businessId;
final AuthStore authStore;
const ChecksPage({
super.key,
required this.businessId,
required this.authStore,
});
@override
Widget build(BuildContext context) {
return const SizedBox.expand();
}
}