Postcode constructor

Postcode({
  1. Key? key,
  2. String title = '주소검색',
  3. Color colour = Colors.white,
  4. String apiKey = '',
  5. PreferredSizeWidget? appBar,
  6. Function? callback,
})

Implementation

Postcode({
  Key? key,
  this.title = '주소검색',
  this.colour = Colors.white,
  this.apiKey = '',
  this.appBar,
  this.callback,
}) : super(key: key);