$EventbusProtoDoubleParameterArray.fromJson constructor

$EventbusProtoDoubleParameterArray.fromJson(
  1. Map json_
)

Implementation

$EventbusProtoDoubleParameterArray.fromJson(core.Map json_)
  : this(
      doubleValues: (json_['doubleValues'] as core.List?)
          ?.map((value) => (value as core.num).toDouble())
          .toList(),
    );