EmptyView constructor

EmptyView({
  1. Key? key,
  2. String? text = '这里是空的哟~',
})

Implementation

EmptyView({Key? key, this.text='这里是空的哟~'}) : super(key: key);