UNUserNotificationCenterDelegateの
userNotificationCenter(center: UNUserNotificationCenter, didReceiveNotificationResponse response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void)
を実装居ている場合は上記が呼ばれ、実装していない場合は
AppDelegateの
| import 'package:flutter/material.dart'; | |
| class DotLine extends StatelessWidget { | |
| const DotLine({ | |
| this.height = 6, | |
| this.color = const Color.fromRGBO(232, 232, 232, 1), | |
| this.spacing = 10, | |
| }); | |
| final double height; | |
| final Color color; |