DeveloperInfo constructor

const DeveloperInfo({
  1. required String id,
  2. required String name,
  3. required String plan,
})

Implementation

const DeveloperInfo({
  required this.id,
  required this.name,
  required this.plan,
});