RevertClientResponse.fromJson constructor

RevertClientResponse.fromJson(
  1. Map json_
)

Implementation

RevertClientResponse.fromJson(core.Map json_)
    : this(
        client: json_.containsKey('client')
            ? Client.fromJson(
                json_['client'] as core.Map<core.String, core.dynamic>)
            : null,
      );