getExtRefs method

List<Uint8List> getExtRefs()

Implementation

List<Uint8List> getExtRefs(){
  List<Uint8List> ll = [];
  for(FactomExtRef fref in extRefs){
    ll.add(fref.data);
  }
  return ll;
}