Get a list of BitmapDatas of frames whose names starts with namePrefix
.
Source
List<BitmapData> getBitmapDatas(String namePrefix) => frames .where((f) => f.name.startsWith(namePrefix)) .map((f) => f.bitmapData) .toList();
Get a list of BitmapDatas of frames whose names starts with namePrefix
.
List<BitmapData> getBitmapDatas(String namePrefix) => frames .where((f) => f.name.startsWith(namePrefix)) .map((f) => f.bitmapData) .toList();