configure static method

void configure({
  1. Future<String?> onErrorCaught(
    1. dynamic
    )?,
})

Implementation

static void configure({
  Future<String?> Function(dynamic)? onErrorCaught,
}) {
  if (onErrorCaught != null) {
    _onErrorCaught = onErrorCaught;
  }
}