Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void main() {
- var r1 = Circle();
- print(r1.radiusCheck());
- }
- class Circle
- {
- int radius=1;
- /*Here there is no constructor mentioned so dart uses it's inbuilt default constructor */
- int radiusCheck()
- {
- return radius;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement