UMEWidget constructor

const UMEWidget({
  1. Key? key,
  2. required Widget child,
  3. bool enable = true,
  4. Iterable<Locale>? supportedLocales,
  5. Iterable<LocalizationsDelegate> localizationsDelegates = defaultLocalizationsDelegates,
})

Implementation

const UMEWidget({
  Key? key,
  required this.child,
  this.enable = true,
  this.supportedLocales,
  this.localizationsDelegates = defaultLocalizationsDelegates,
}) : super(key: key);