nullableIntMappedFromXmlList static method

List<int>? nullableIntMappedFromXmlList(
  1. String? value
)

Implementation

static List<int>? nullableIntMappedFromXmlList(String? value) =>
    value?.toString().split(',').map((item) => int.parse(item)).toList();