fromJson static method

IDFlowLocale? fromJson(
  1. dynamic value
)

Implementation

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