ErrorLogEntry.fromJson constructor

ErrorLogEntry.fromJson(
  1. Map json_
)

Implementation

ErrorLogEntry.fromJson(core.Map json_)
  : this(
      errorDetails:
          (json_['errorDetails'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      objectUri: json_['objectUri'] as core.String?,
    );