form pro - sin imagenes
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
library setting_repository;
|
||||
|
||||
export 'src/models/models.dart';
|
||||
export 'src/entities/entities.dart';
|
||||
export 'src/repositories/setting_repo.dart';
|
||||
export 'src/repositories/firebase_setting_repository.dart';
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
import 'package:equatable/equatable.dart';
|
||||
|
||||
class SettingUi extends Equatable {
|
||||
final String cityName;
|
||||
final String coordsOfCity;
|
||||
final String stateOfCity;
|
||||
final String countryOfCity;
|
||||
|
||||
const SettingUi({
|
||||
required this.cityName,
|
||||
required this.coordsOfCity,
|
||||
required this.stateOfCity,
|
||||
required this.countryOfCity,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props =>
|
||||
[cityName, coordsOfCity, stateOfCity, countryOfCity];
|
||||
}
|
||||
Reference in New Issue
Block a user