github_username property

String? github_username

Implementation

String? get github_username {
  try {
    if (rawData["github_username"] is String == false) {
      return null;
    }
    return rawData["github_username"] as String;
  } catch (e) {
    return null;
  }
}
void github_username=(String? value)

Implementation

set github_username(String? value) {
  rawData["github_username"] = value;
}