apiDecoders static method

Map<Type, NyApiService> apiDecoders()

Get api decoders

Implementation

static Map<Type, NyApiService> apiDecoders() {
  Map<Type, NyApiService> apiDecoders = {};
  instance._apiDecoders.entries
      .forEach((e) => apiDecoders.addAll({e.key: e.value()}));
  apiDecoders.addAll(instance._singletonApiDecoders);
  return apiDecoders;
}