update static method

void update(
  1. ConvertConfig updater(
    1. ConvertConfig current
    )
)

Updates the global configuration by applying updater to the current instance.

Implementation

static void update(ConvertConfig Function(ConvertConfig current) updater) {
  _global = updater(_global);
}