setOwnerId method

void setOwnerId(
  1. String userId
)

Implementation

void setOwnerId(String userId) {
  if (state.ownerId is ValueNotifier<String>) {
    (state.ownerId as ValueNotifier<String>).value = userId;
  }
}