listPrefecture method

Future<PrefectureListDto?> listPrefecture()

Implementation

Future<PrefectureListDto?> listPrefecture (
) async {
  String path = "/pub/address/prefecture";
  return PrefectureListDto.fromJson(
    await get(path, requireAuthorization:true) ?? {}
  );
}