recipients property

List<String> get recipients

Implementation

List<String> get recipients =>
    _recipients.toDart.map((type) => type.toDart).toList();
set recipients (List<String> value)

Implementation

set recipients(List<String> value) =>
    _recipients = value.jsify() as JSArray<JSString>;