copyWith method

Implementation

ContentMetadataCurrentuserLastcontributed copyWith(
    {String? status, DateTime? when}) {
  return ContentMetadataCurrentuserLastcontributed(
    status: status ?? this.status,
    when: when ?? this.when,
  );
}