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