PlatformChip constructor

PlatformChip({
  1. Key? key,
  2. Widget? avatar,
  3. required Widget label,
  4. Widget? deleteIcon,
  5. double? elevation,
  6. VoidCallback? onDeleted,
  7. Color? backgroundColor,
})

Implementation

PlatformChip(
    {Key? key,
    this.avatar,
    required this.label,
    this.deleteIcon,
    this.elevation,
    this.onDeleted,
    this.backgroundColor})
    : super(key: key);