DeviceInformationDecorator<T> typedef
DeviceInformationDecorator<T> =
T Function(DeviceInformation oriInfo, T value)
A decorator for DeviceInformation
T
is the type of the value to be decorated
oriInfo is the original DeviceInformation object
value is the value to be decorated
Implementation
typedef DeviceInformationDecorator<T> = T Function(
DeviceInformation oriInfo,
T value,
);