dioDateLibrary static method

DioDateLibrary? dioDateLibrary(
  1. String? name
)

Implementation

static DioDateLibrary? dioDateLibrary(String? name) {
  switch (name) {
    case 'timemachine':
      return DioDateLibrary.timemachine;
    case 'core':
      return DioDateLibrary.core;
  }
  return null;
}