Pill constructor

const Pill({
  1. Key? key,
  2. required String identifier,
  3. required String url,
  4. Future<Map<String, dynamic>>? future,
  5. OnPillTap? onTap,
  6. GetMxcUrl? getMxcUrl,
})

Implementation

const Pill({
  Key? key,
  required this.identifier,
  required this.url,
  this.future,
  this.onTap,
  this.getMxcUrl,
}) : super(key: key);