associate method

dynamic associate({
  1. JsonObjectViewerState? it,
  2. _JsonArrayViewerState? it2,
})

Implementation

associate({JsonObjectViewerState? it, _JsonArrayViewerState? it2}){
  if(it != null){
    that1.add(it);
  }
  if(it2 != null){
    that2.add(it2);
  }
}