shared property

Network get shared

获取单例

Implementation

static Network get shared {
  if (_instance == null) {
    throw Exception('网络未配置。先调用Network.configure');
  }
  return _instance!;
}