pubspec property

Pubspec get pubspec

Implementation

Pubspec get pubspec {
  try {
    if (rawData["pubspec"] is Map == false) {
      return Pubspec({});
    }
    return Pubspec(rawData["pubspec"] as Map);
  } catch (e) {
    return Pubspec({});
  }
}
set pubspec (Pubspec value)

Implementation

set pubspec(Pubspec value) {
  rawData["pubspec"] = value.toJson();
}