S constructor

S({
  1. String? name,
})

Implementation

S({
  String? name,
}) {
  _name = name;
}