CharacterSetECI constructor
CharacterSetECI(
- String name,
- dynamic value, [
- dynamic otherEncodingNames
Implementation
CharacterSetECI(this.name, dynamic value, [dynamic otherEncodingNames])
: _indexes = (value is int) ? [value] : value as List<int>,
_otherEncodingNames =
(otherEncodingNames == null || otherEncodingNames is String)
? [if (otherEncodingNames != null) otherEncodingNames]
: otherEncodingNames as List<String>;