BZEmptyView constructor

const BZEmptyView({
  1. Key? key,
  2. String? imageUrl,
  3. String? titleText,
  4. Color? titleTextColor,
  5. String? describeText,
  6. Color? describeTextColor = const Color(0xFF999999),
})

Implementation

const BZEmptyView({
  super.key,
  this.imageUrl,
  this.titleText,
  this.titleTextColor,
  this.describeText,
  this.describeTextColor = const Color(0xFF999999),
});