loginModelFromJson static method
Implementation
static List<LoginModel> loginModelFromJson(String str) =>
List<LoginModel>.from(
json.decode(str).map((x) => LoginModel.fromJson(x)));
static List<LoginModel> loginModelFromJson(String str) =>
List<LoginModel>.from(
json.decode(str).map((x) => LoginModel.fromJson(x)));