orElse method

T orElse(
  1. T branch()
)

Implementation

T orElse(T Function() branch) {
  return this ?? branch();
}