nullableMappedToStringList static method

List<String>? nullableMappedToStringList(
  1. List? value
)

Implementation

static List<String>? nullableMappedToStringList(List<dynamic>? value) =>
    value?.map((element) => mappedToString(element)).toList();