TerminateSessionRequest.fromJson constructor

TerminateSessionRequest.fromJson(
  1. Map json_
)

Implementation

TerminateSessionRequest.fromJson(core.Map json_)
    : this(
        requestId: json_.containsKey('requestId')
            ? json_['requestId'] as core.String
            : null,
      );