src property

String get src

A standard URI pointing to an icon resource.

Implementation

String get src {
  final src = _value[Keys.src] as String?;
  if (src == null) {
    throw ArgumentError('Missing required ${Keys.src} field in $Icon');
  }
  return src;
}