美文网首页
flutter命名构造函数和工厂构造函数

flutter命名构造函数和工厂构造函数

作者: 不要和哥闹 | 来源:发表于2020-05-10 18:40 被阅读0次
    class Frame {
      final double x;
      final double y;
      final double width;
      final double height;
      const Frame.only({this.x, this.y, this.width, this.height});
      factory Frame(double x){
        return Frame.only(x:x);
      }
    }
    
    Frame(123.0);
    Frame.only();
    

    相关文章

      网友评论

          本文标题:flutter命名构造函数和工厂构造函数

          本文链接:https://www.haomeiwen.com/subject/ertsnhtx.html