LinkHeader constructor
const
LinkHeader({
- Key? key,
- required Key linkKey,
- double height = 0.0,
- RefreshStyle? refreshStyle,
- Duration completeDuration = const Duration(milliseconds: 200),
Implementation
const LinkHeader(
{Key? key,
required this.linkKey,
double height: 0.0,
RefreshStyle? refreshStyle,
Duration completeDuration: const Duration(milliseconds: 200)})
: super(
height: height,
refreshStyle: refreshStyle,
completeDuration: completeDuration,
key: key);