CustomParameterCodec constructor

const CustomParameterCodec({
  1. required String encode(
    1. String field
    ),
  2. required String decode(
    1. String field
    ),
})

create a custom parameter codec

Implementation

const CustomParameterCodec({required this.encode, required this.decode});