getLastContext static method

BuildContext? getLastContext()

Implementation

static BuildContext? getLastContext(){
  if(isNullOrEmpty(_contextStack)) return null;
  try{
    return _contextStack.last();
  }catch(e){
    return null;
  }
}