ClientInformationDecorator<T> typedef

ClientInformationDecorator<T> = T Function(ClientInformation oriInfo, T value)

A decorator for ClientInformation

T is the type of the value to be decorated oriInfo is the original ClientInformation object value is the value to be decorated

Implementation

typedef ClientInformationDecorator<T> = T Function(
  ClientInformation oriInfo,
  T value,
);