CallPushConfig constructor

CallPushConfig({
  1. String? pushTitle,
  2. String? pushContent,
  3. String? pushPayload,
  4. required bool needBadge,
  5. required bool needPush,
})

Implementation

CallPushConfig({
  this.pushTitle,
  this.pushContent,
  this.pushPayload,
  required this.needBadge,
  required this.needPush,
});