BundleItem constructor

BundleItem({
  1. required String name,
  2. required String value,
  3. String type = '',
  4. String description = '',
  5. Map<String, dynamic> placeholders = const {},
})

Implementation

BundleItem({
  required this.name,
  required this.value,
  String type = '',
  String description = '',
  Map<String, dynamic> placeholders = const {},
}) : options = BundleItemOptions(
        type: type,
        description: description,
        placeholders: placeholders,
      );