copyWith method

SuccessStatusResponse copyWith({
  1. bool? success,
  2. String? info,
})

Implementation

SuccessStatusResponse copyWith({bool? success, String? info}) {
  return SuccessStatusResponse(
      success: success ?? this.success, info: info ?? this.info);
}