Apply dart format to all files
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user