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:country_coder/src/country_coder.dart',
    'CountryCoder.prepareData',
    $CountryCoder.$prepareData,
  );

  runtime.registerBridgeFunc(
    'package:country_coder/src/country_coder.dart',
    'CountryCoder.instance*g',
    $CountryCoder.$instance,
  );
}