copyWith method
FwStandardModelsCopyLogicResponse
copyWith({
- int? status,
- bool? success,
- String? msg,
- FwStandardBusinessLogicFwBusinessLogic? copy,
Implementation
FwStandardModelsCopyLogicResponse copyWith({
int? status,
bool? success,
String? msg,
FwStandardBusinessLogicFwBusinessLogic? copy,
}) {
return FwStandardModelsCopyLogicResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
copy: copy ?? this.copy,
);
}