fromJsonSafeStringSet static method

Set<String> fromJsonSafeStringSet(
  1. dynamic value
)

Implementation

static Set<String> fromJsonSafeStringSet(dynamic value) =>
    fromJsonSafeSet<String>(
      value,
      producer: stringProducer,
    );