fromJson static method

IDFlowEntryMode? fromJson(
  1. dynamic value
)

Implementation

static IDFlowEntryMode? fromJson(dynamic value) {
  if (value == null) return null;
  return IDFlowEntryMode.values.byName(value);
}