getLocalGovernment method
Implementation
Future<LocalGovernmentDto?> getLocalGovernment (
String? localGovernmentCd
) async {
String path = "/pub/address/local-government/$localGovernmentCd";
return LocalGovernmentDto.fromJson(
await get(path, requireAuthorization:true) ?? {}
);
}