intList property

List<int> get intList

Implementation

List<int> get intList =>
    value.split('').map((e) => int.parse(e)).toList(growable: false);