UFollowParams.fromMap constructor

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

Implementation

factory UFollowParams.fromMap(Map<String, dynamic> json) => UFollowParams(
      userId: json["userId"],
      targetUserId: json["targetUserId"],
      targetProductId: json["targetProductId"],
      targetCategoryId: json["targetCategoryId"],
    );