fromJsonSafeStringList static method

List<String> fromJsonSafeStringList(
  1. dynamic value
)

Implementation

static List<String> fromJsonSafeStringList(dynamic value) =>
    fromJsonSafeList<String>(
      value,
      producer: stringProducer,
    );