MessageCustomAction constructor

const MessageCustomAction({
  1. required String title,
  2. String assetName = '',
  3. String? package,
  4. IconData? systemIconFallback,
  5. required void action(
    1. MessageInfo
    ),
})

Implementation

const MessageCustomAction({
  required this.title,
  this.assetName = '',
  this.package,
  this.systemIconFallback,
  required this.action,
});