SvgProvider.future constructor

SvgProvider.future(
  1. Future<DrawableRoot> svg
)

Obtains SVG from a Future.

Implementation

factory SvgProvider.future(Future<DrawableRoot> svg) {
  return SvgProvider._(svg);
}