ErrorLogEntry.fromJson constructor
      
      ErrorLogEntry.fromJson(
    
    
- 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?,
    );