TkfPushNotification constructor

TkfPushNotification({
  1. dynamic onInfoPush(
    1. String title,
    2. String? text
    )?,
  2. required dynamic onOpening(
    1. String devId,
    2. bool hasError
    ),
  3. dynamic onAccountPush(
    1. String title,
    2. String? text
    )?,
  4. int samePushIgnoreTime = 15,
})

Implementation

TkfPushNotification(
    {this.onInfoPush,
    required this.onOpening,
    this.onAccountPush,
    this.samePushIgnoreTime = 15});