CustomValueFormat<T extends Object> constructor

const CustomValueFormat<T extends Object>({
  1. required String applicationId,
  2. Future<T?> onDecode(
    1. Object value,
    2. String platformType
    )?,
  3. FutureOr<Object> onEncode(
    1. T value,
    2. String platformType
    )?,
})

Implementation

const CustomValueFormat({
  required this.applicationId,
  this.onDecode,
  this.onEncode,
});