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