Regionalizations constructor

const Regionalizations({
  1. Key? key,
  2. Widget? child,
  3. required Region region,
  4. List<RegionalizationsDelegate> delegates = const [],
})

Defines the Region for its child and the localized resources that the child depends on.

Regionalizations mimics the Localizations API

See also:

Implementation

const Regionalizations({
  super.key,
  this.child,
  required this.region,
  this.delegates = const [],
});