$EventbusProtoBooleanParameterArray.fromJson constructor
$EventbusProtoBooleanParameterArray.fromJson(
- Map json_
Implementation
$EventbusProtoBooleanParameterArray.fromJson(core.Map json_)
: this(
booleanValues: json_.containsKey('booleanValues')
? (json_['booleanValues'] as core.List)
.map((value) => value as core.bool)
.toList()
: null,
);