listLocalGovernment method

Future<LocalGovernmentListDto?> listLocalGovernment(
  1. int? prefectureCd
)

Implementation

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