fromMap static method

GeneratorConfig? fromMap(
  1. Map? data
)

Implementation

static GeneratorConfig? fromMap(Map? data) {
  if (data == null) return null;
  return GeneratorConfig()..patch(data);
}