Rock constructor

const Rock(
  1. String name,
  2. String image,
  3. String description
)

A const constructor.

Implementation

const Rock(this.name, this.image, this.description);