LogValue constructor

const LogValue({
  1. required DateTime dateTime,
  2. required String name,
  3. DynamicMap parameters = const {},
})

Class for defining log values for viewing.

dateTime is the date and time of logging, name is the name of the log, and parameters is the log parameters.

閲覧するためのログの値を定義するためのクラス。

dateTimeにログの記録日時、nameにログの名前、parametersにログのパラメーターが入ります。

Implementation

const LogValue({
  required this.dateTime,
  required this.name,
  this.parameters = const {},
});