fromMap static method

ALoggerConfig? fromMap(
  1. Map? map
)

Implementation

static ALoggerConfig? fromMap(Map? map) {
  if (map == null) {
    return null;
  }
  return ALoggerConfig(
    level: ALogLevelExtension.get(map['level'] as int?),
    path: map['path'] as String?,
    namePrefix: map['namePrefix'] as String?,
  );
}