Owner constructor

Owner(
  1. Map innerMap, {
  2. required String login,
  3. String? name,
})

Constructs a new instance of the Owner class.

Implementation

Owner(
  super.innerMap, {
  required this.login,
  this.name,
});