segments property

List<String> get segments

Get the segments of this channel

Implementation

List<String> get segments {
  return name.split('/').where((segment) => segment.isNotEmpty).toList();
}