GoogleCloudApigeeV1Session.fromJson constructor

GoogleCloudApigeeV1Session.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1Session.fromJson(core.Map json_)
    : this(
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
        timestampMs: json_.containsKey('timestampMs')
            ? json_['timestampMs'] as core.String
            : null,
      );