GoogleCloudApigeeV1DebugSessionTransaction.fromJson constructor

GoogleCloudApigeeV1DebugSessionTransaction.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1DebugSessionTransaction.fromJson(core.Map json_)
    : this(
        completed: json_.containsKey('completed')
            ? json_['completed'] as core.bool
            : null,
        point: json_.containsKey('point')
            ? (json_['point'] as core.List)
                .map((value) => GoogleCloudApigeeV1Point.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );