userEntityToJson function

String userEntityToJson(
  1. List<JJUserEntity> data
)

Implementation

String userEntityToJson(List<JJUserEntity> data) => json.encode(List<dynamic>.from(data.map((x) => x.toJson())));