ReportRequest.fromJson constructor

ReportRequest.fromJson(
  1. Map json_
)

Implementation

ReportRequest.fromJson(core.Map json_)
  : this(
      operations: (json_['operations'] as core.List?)
          ?.map(
            (value) => AttributeContext.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      serviceConfigId: json_['serviceConfigId'] as core.String?,
    );