copyWith method

Status$Response copyWith({
  1. Object? status,
})

Implementation

Status$Response copyWith({Object? status}) {
  return Status$Response(status: status ?? this.status);
}