configureForRuntime static method

void configureForRuntime(
  1. Runtime runtime
)

Configure this enum for use in a Runtime

Implementation

static void configureForRuntime(Runtime runtime) {
  runtime.registerBridgeEnumValues(
    'package:flutter/src/material/button_style_button.dart',
    'IconAlignment',
    $IconAlignment._$values,
  );

  runtime.registerBridgeFunc(
    'package:flutter/src/material/button_style_button.dart',
    'IconAlignment.values*g',
    $IconAlignment.$values,
  );
}