copyWith method

MemberClaimEntity copyWith({
  1. String? documentID,
  2. int? refreshValue,
})

Implementation

MemberClaimEntity copyWith({
  String? documentID,
  int? refreshValue,
}) {
  return MemberClaimEntity(
    refreshValue: refreshValue ?? this.refreshValue,
  );
}