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