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