ContextMenuItem constructor

ContextMenuItem({
  1. int? androidId,
  2. String? iosId,
  3. required String title,
  4. dynamic action()?,
})

Implementation

ContextMenuItem(
    {this.androidId, this.iosId, required this.title, this.action});