openlog function

void openlog([
  1. String? ident,
  2. int option = 0,
  3. int facility = 0
])

Implementation

void openlog([String? ident, int option = 0, int facility = 0]) {
  platform.openlog(ident, option, facility);
}