information method

Future information (
  1. String message,
  2. {Map<String, dynamic> fields,
  3. Map<String, String> tags}
)

Information events describe things happening in the system that correspond to its responsibilities and functions. Generally these are the observable actions the system can perform.

Implementation

Future information(String message,
        {Map<String, dynamic> fields, Map<String, String> tags}) async =>
    await this.log('information', message, fields: fields, tags: tags);