FollowCommunity constructor

  1. @JsonSerializable(fieldRename: FieldRename.snake, includeIfNull: false)
const FollowCommunity({
  1. required int communityId,
  2. required bool follow,
  3. required String auth,
})

Implementation

@JsonSerializable(fieldRename: FieldRename.snake, includeIfNull: false)
const factory FollowCommunity({
  required int communityId,
  required bool follow,
  required String auth,
}) = _FollowCommunity;