fromMap static method

Config? fromMap(
  1. Map? data
)

Implementation

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