contextToBuilder method

dynamic contextToBuilder(
  1. T? context
)

Override if the context implements the builder pattern.

This should return a builder for the context. Default implementation is a no-op.

Implementation

dynamic contextToBuilder(T? context) => context;