ChainFormatter constructor

ChainFormatter({
  1. required dynamic format(
    1. dynamic
    ),
  2. required String type,
})

Implementation

ChainFormatter({
  required this.format,
  required this.type,
});