fromJson static method
Decodes a NodeDetachedSessionKillResponse.
Implementation
static NodeDetachedSessionKillResponse fromJson(
int? channel,
Map<String, dynamic> d,
) => NodeDetachedSessionKillResponse(
requestId: Json.requireString(d, 'requestId'),
ok: Json.optBool(d, 'ok'),
message: Json.optString(d, 'message') ?? '',
);