switchToProfile method

Future<void> switchToProfile(
  1. String profileName
)

Switches DataWedge to use the specified profileName.

The profile must already exist. Use configureProfile or configureClassicBarcodeProfile to create one first.

Implementation

Future<void> switchToProfile(String profileName) {
  return _platform.switchToProfile(profileName);
}