configure method

*<Null safety>*

void configure ({int? vmoSizeBytes})

Implementation

static void configure({int? vmoSizeBytes}) {
  if (_singleton != null) {
    throw InspectStateError(
        'configureInspect cannot be called after factory runs');
  }
  if (vmoSizeBytes != null) {
    if (vmoSizeBytes < 64) {
      throw ArgumentError('VMO size must be at least 64 bytes.');
    }
    vmoSize = vmoSizeBytes;
  }
}