toJson$Enum$FlowProfileActionEnum function

String toJson$Enum$FlowProfileActionEnum(
  1. Enum$FlowProfileActionEnum e
)

Implementation

String toJson$Enum$FlowProfileActionEnum(Enum$FlowProfileActionEnum e) {
  switch (e) {
    case Enum$FlowProfileActionEnum.CREATE:
      return r'CREATE';
    case Enum$FlowProfileActionEnum.UPDATE:
      return r'UPDATE';
    case Enum$FlowProfileActionEnum.DELETE:
      return r'DELETE';
    case Enum$FlowProfileActionEnum.$unknown:
      return r'$unknown';
  }
}