rebuild abstract method

V rebuild(
  1. dynamic updates(
    1. B
    )
)

Rebuilds the instance.

The result is the same as this instance but with updates applied. updates is a function that takes a builder B.

The implementation of this method will be generated for you by the built_value generator.

Implementation

V rebuild(Function(B) updates);