$EventbusProtoBooleanParameterArray.fromJson constructor

$EventbusProtoBooleanParameterArray.fromJson(
  1. Map json_
)

Implementation

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