Apply dart format to all files

This commit is contained in:
dmit.b
2026-05-15 19:09:25 +03:00
parent 6497c1eebf
commit 69f3d09e62
11 changed files with 191 additions and 171 deletions
+4 -4
View File
@@ -3,20 +3,20 @@ import 'package:flutter/material.dart';
class MapProvider with ChangeNotifier {
bool _isInitialized = false;
String _error = '';
bool get isInitialized => _isInitialized;
String get error => _error;
void initialize() {
_isInitialized = true;
notifyListeners();
}
void handleError(String error) {
_error = error;
notifyListeners();
}
void clearError() {
_error = '';
notifyListeners();