findRetailerModelFromJson static method

List<FindRetailerModel> findRetailerModelFromJson(
  1. String str
)

Implementation

static List<FindRetailerModel> findRetailerModelFromJson(String str) =>
    List<FindRetailerModel>.from(
        json.decode(str).map((x) => FindRetailerModel.fromJson(x)));