MethodTypeConv constructor

const MethodTypeConv({
  1. MethodType? defaultValue,
})

Serializes MethodType to and from json

Can be used as annotation for json_serializable classes

@MethodTypeConv()
final MethodType myEnum;

Implementation

const MethodTypeConv({this.defaultValue});