Skip to content

Instantly share code, notes, and snippets.

@heftekharm
Last active November 25, 2021 10:43
Show Gist options
  • Save heftekharm/ad915cc353440354a2bf5256e9271dcb to your computer and use it in GitHub Desktop.
Save heftekharm/ad915cc353440354a2bf5256e9271dcb to your computer and use it in GitHub Desktop.
//with static
class Circle {
final int size;
Circle(this.size);
static Circle fromJson(String json) => Circle(jsonDecode(json)["size"]);
}
void main(){
var circle=Circle.fromJson(""" {"size":10} """);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment