overlayInfos property
Provides the complete OverlayInfo list contained within the collection
Returns
- The OverlayInfo list
Throws
- An exception if it fails
Implementation
static List<OverlayInfo> get overlayInfos {
final OperationResult resultString = objectMethod(
0,
'OverlayCollection',
'getOverlays',
);
final List<dynamic> res = resultString['result'];
return res.map((final dynamic e) => OverlayInfo.init(e)).toList();
}