userEntityFromJson function

List<JJUserEntity> userEntityFromJson(
  1. String str
)

Implementation

List<JJUserEntity> userEntityFromJson(String str) => List<JJUserEntity>.from(json.decode(str).map((x) => JJUserEntity.fromJson(x)));