url property

Future<String?> get url

URL that points to an image.

Implementation

Future<String?> get url async {
  return _style?.getStyleSourceProperty(id, "url").then((value) {
    if (value.value != '<null>') {
      return value.value;
    } else {
      return null;
    }
  });
}