setStatus method

void setStatus(
  1. String? status
)

Sets the selected status for the organization.

Implementation

void setStatus(String? status) {
  emit(state.copyWith(selectedStatus: status));
}