toBuilder method

WidgetBuilder? toBuilder()

Converts a nullable widget to a builder

Implementation

WidgetBuilder? toBuilder() {
  return this == null ? null : (_) => this!;
}