copyWith method

UpdateFooterCommentModel copyWith({
  1. UpdateFooterCommentModelVersion? version,
  2. dynamic body,
})

Implementation

UpdateFooterCommentModel copyWith(
    {UpdateFooterCommentModelVersion? version, dynamic body}) {
  return UpdateFooterCommentModel(
    version: version ?? this.version,
    body: body ?? this.body,
  );
}