instance property

Links get instance

Implementation

static Links get instance {
  if (_instance == null) {
    throw UnimplementedError('Links is not globally defined yet');
  }
  return _instance!;
}
set instance (Links value)

Implementation

static set instance(Links value) {
  _instance ??= value;
}