$EventbusProtoIntParameterArray.fromJson constructor

$EventbusProtoIntParameterArray.fromJson(
  1. Map json_
)

Implementation

$EventbusProtoIntParameterArray.fromJson(core.Map json_)
    : this(
        intValues: json_.containsKey('intValues')
            ? (json_['intValues'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );