instance property

dynamic instance

Implementation

static get instance {
  if (_instance == null) {
    throw Exception(
        'Style library was not initialized. Did you call Style.init(context)?');
  }
  return _instance;
}