listLocalGovernment method
Implementation
Future<LocalGovernmentListDto?> listLocalGovernment (
int? prefectureCd
) async {
String path = "/pub/address/prefecture/$prefectureCd";
return LocalGovernmentListDto.fromJson(
await get(path, requireAuthorization:true) ?? {}
);
}