configureForRuntime static method

void configureForRuntime(
  1. Runtime runtime
)

Configure this class for use in a Runtime

Implementation

static void configureForRuntime(Runtime runtime) {
  runtime.registerBridgeFunc(
    'package:flutter/src/foundation/diagnostics.dart',
    'DiagnosticPropertiesBuilder.',
    $DiagnosticPropertiesBuilder.$new,
  );

  runtime.registerBridgeFunc(
    'package:flutter/src/foundation/diagnostics.dart',
    'DiagnosticPropertiesBuilder.fromProperties',
    $DiagnosticPropertiesBuilder.$fromProperties,
  );
}