BallObject constructor
BallObject({})
Implementation
BallObject({
required this.typeName,
this.superObject,
Map<String, Object?>? fields,
Map<String, Object?>? methods,
}) : fields = fields ?? <String, Object?>{},
methods = methods ?? <String, Object?>{},
super(<String, Object?>{}) {
_refreshEntries();
}