UserInfoScaffold constructor

const UserInfoScaffold({
  1. Key? key,
  2. required UserInfo userInfo,
  3. String? heroTag,
  4. List<Widget>? actions,
  5. Future<UserInfo?> onRefresh()?,
  6. bool enableBarCode = false,
})

Implementation

const UserInfoScaffold({
  Key? key,
  required this.userInfo,
  this.heroTag,
  this.actions,
  this.onRefresh,
  this.enableBarCode = false,
}) : super(key: key);