RefreshIndicator constructor

const RefreshIndicator({
  1. Key? key,
  2. double height = 60.0,
  3. double offset = 0.0,
  4. Duration completeDuration = const Duration(milliseconds: 500),
  5. RefreshStyle? refreshStyle = RefreshStyle.Follow,
})

Implementation

const RefreshIndicator({Key? key, this.height: 60.0, this.offset: 0.0, this.completeDuration: const Duration(milliseconds: 500), this.refreshStyle: RefreshStyle.Follow})
    : super(key: key);