UPointCount.fromMap constructor

UPointCount.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UPointCount.fromMap(Map<String, dynamic> json) => UPointCount(
      userId: json["userId"],
      point: json["point"],
    );