unwrapOr<T> method

T unwrapOr<T>(
  1. T defaultValue
)

Implementation

T unwrapOr<T>(T defaultValue) {
  return defaultValue;
}