buildContext method

T? buildContext(
  1. dynamic builder
)

Override if the context implements the builder pattern.

This takes a context builder and returns a new context with the changes. Default implementation is a no-op.

Implementation

T? buildContext(dynamic builder) => builder;