AllocateIdsResponse.fromJson constructor

AllocateIdsResponse.fromJson(
  1. Map json_
)

Implementation

AllocateIdsResponse.fromJson(core.Map json_)
  : this(
      keys: (json_['keys'] as core.List?)
          ?.map(
            (value) =>
                Key.fromJson(value as core.Map<core.String, core.dynamic>),
          )
          .toList(),
    );