getLocalGovernment method

Future<LocalGovernmentDto?> getLocalGovernment(
  1. String? localGovernmentCd
)

Implementation

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