androidMobileProtectConfiguration function

AndroidMobileProtectConfiguration androidMobileProtectConfiguration(
  1. void init(
    1. AndroidMobileProtectConfiguration
    )
)

Implementation

AndroidMobileProtectConfiguration androidMobileProtectConfiguration(void Function(AndroidMobileProtectConfiguration) init) {
  final config = AndroidMobileProtectConfiguration();
  init(config);
  return config;
}