fromJson static method

IDFlowPresentationStyle? fromJson(
  1. dynamic value
)

Implementation

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