ATSDetailsContents constructor

const ATSDetailsContents({
  1. Key? key,
  2. Widget? appBarTitle,
  3. required SystemAtsData data,
  4. RefreshCallback onRefresh = Future.value,
})

Implementation

const ATSDetailsContents({
  super.key,
  this.appBarTitle,
  required this.data,
  this.onRefresh = Future.value,
});