State constructor
State({})
Implementation
factory State({
String id = "",
String code = "",
String name = "",
String countryId = "",
required Country country,
List<Province> provinces = const [],
}) {
return State._internal(
id: id,
code: code,
name: name,
countryId: countryId,
country: country,
provinces: provinces,
);
}