copyWith method

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,
  );
}