copyWith method

report copyWith({
  1. int? id,
  2. String? date,
  3. String? exception,
  4. String? deviceInfo,
})

Implementation

report copyWith(
        {int? id, String? date, String? exception, String? deviceInfo}) =>
    report(
      id: id ?? this.id,
      date: date ?? this.date,
      exception: exception ?? this.exception,
      deviceInfo: deviceInfo ?? this.deviceInfo,
    );