FastEmptyView constructor

const FastEmptyView({
  1. Key? key,
  2. double width = 200,
  3. double height = 200,
})

Implementation

const FastEmptyView({
  Key? key,
  this.width = 200,
  this.height = 200,
}) : super(key: key);