update method

  1. @override
void update(
  1. void updates(
    1. CheckoutResultBuilder
    )?
)
override

Applies updates.

updates is a function that takes a builder B.

Implementation

@override
void update(void Function(CheckoutResultBuilder)? updates) {
  if (updates != null) updates(this);
}