LocalNotification constructor

LocalNotification({
  1. String title = '',
  2. String body = '',
})

Creates a LocalNotification with the given title and body.

Implementation

LocalNotification({String title = '', String body = ''})
  : _title = title,
    _body = body;