send abstract method

Future<void> send(
  1. String name, {
  2. DynamicMap? parameters,
})

Execute the process of saving the log by passing name and parameters, which is the name of the log.

ログの名前であるnameparametersを渡してログを保存する処理を実行してください。

Implementation

Future<void> send(String name, {DynamicMap? parameters});