type property

Type type

The type of the object returned by the load method, T by default.

This type is used to retrieve the object "loaded" by this RegionalizationsDelegate from the Regionalizations inherited widget. For example the object loaded by RegionalizationsDelegate<Foo> would be retrieved with:

Foo foo = Regionalizations.of<Foo>(context, Foo);

It's rarely necessary to override this getter.

Implementation

Type get type => T;