randomValueOrBuilder method

V randomValueOrBuilder(
  1. V builder()
)

return random value or the use the builder to return the key

Implementation

V randomValueOrBuilder(V Function() builder) =>
    randomValueOrNull() ?? builder();