RemediKopo constructor

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

Implementation

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