$EventbusProtoStringParameterArray.fromJson constructor

$EventbusProtoStringParameterArray.fromJson(
  1. Map json_
)

Implementation

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