RemoteLog constructor

RemoteLog({
  1. required String logLevel,
  2. String? tag,
  3. required String message,
  4. String? throwable,
  5. required String time,
})

Creates an instance of RemoteLog with the given properties.

Implementation

RemoteLog({
  required this.logLevel,
  this.tag,
  required this.message,
  this.throwable,
  required this.time,
});